Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@babel/plugin-transform-flow-strip-types
Advanced tools
Strip flow type annotations from your output code.
The @babel/plugin-transform-flow-strip-types npm package is a plugin for Babel, a JavaScript compiler, that removes type annotations from Flow, a static type checker for JavaScript. This allows developers to write type-safe code during development and strip out these annotations for production builds, resulting in clean JavaScript that can be executed in environments that do not support Flow.
Stripping Flow Type Annotations
This feature removes Flow type annotations from your JavaScript files, converting typed code into plain JavaScript. The code sample shows a function with Flow types that are stripped out after transformation.
import { foo } from 'bar';
function square(n: number): number {
return n * n;
}
// Transformed to:
import { foo } from 'bar';
function square(n) {
return n * n;
}
Similar to @babel/plugin-transform-flow-strip-types, this Babel plugin strips TypeScript annotations from the code. While both plugins serve a similar purpose of removing type annotations, they cater to different type systems: Flow for the former and TypeScript for the latter.
This plugin also deals with Flow types but instead of stripping them, it converts them into comments. This can be useful for preserving type annotations in the transpiled output without affecting the runtime behavior.
Strip flow type annotations from your output code.
See our website @babel/plugin-transform-flow-strip-types for more information.
Using npm:
npm install --save-dev @babel/plugin-transform-flow-strip-types
or using yarn:
yarn add @babel/plugin-transform-flow-strip-types --dev
v7.25.9 (2024-10-22)
babel-parser
, babel-template
, babel-types
syntacticPlaceholders
mode (@liuxingbaoyu)babel-helper-compilation-targets
, babel-preset-env
ClassAccessorProperty
to prevent the no-undef
rule (@victorenator)babel-parser
, babel-types
VISITOR_KEYS
etc. faster to access (@liuxingbaoyu)FAQs
Strip flow type annotations from your output code.
The npm package @babel/plugin-transform-flow-strip-types receives a total of 9,301,800 weekly downloads. As such, @babel/plugin-transform-flow-strip-types popularity was classified as popular.
We found that @babel/plugin-transform-flow-strip-types demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.